home *** CD-ROM | disk | FTP | other *** search
- //////////////////////////////////////////////////////////////////////////////
- //
- // Copyright 1997-99 Pandemic Studios
- //
- // Dark Reign II
- //
-
- CreateObjectType("objective_startjda", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("TRUE")
- {
- }
-
- Action()
- {
- CreateVarInteger("@.shuttleleaving", 0);
- CreateVarInteger("@.shuttledestroyed", 0);
- CreateVarInteger("@.basegone", 0);
- NewObjective("objective_destroy_shuttle");
- NewObjective("objective_traitors_reached_shuttle");
- NewObjective("objective_warden");
- NewObjective("objective_blinking1");
- NewObjective("objective_stop_ravine");
- NewObjective("objective_stop_blinking1");
- NewObjective("objective_you_lost");
- Cmd("rain.type rain_light");
- Cmd("rain.active 1");
- DisplayObjective("Add", "Objective_destroy_shuttle")
- {
- Text("#missions.jda.j03.obj_destroy_shuttle");
- }
- RegionMessage()
- {
- Region("Traitors");
- Message("msg_new_rigs");
- }
- }
- }
- }
-
- CreateObjectType("objective_blinking1", "Objective")
- {
- GameObj();
- ObjectiveObj()
- {
- Condition("Timer")
- {
- Time(10);
- }
-
- Action()
- {
- RegionMessage()
- {
- Region("Traitors");
- Message("msg_new_rigs");
- }
- NewObjective("objective_blinking1");
- }
- }
- }
-
-
-